home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / greasemonkey-0.8.20080609.0-fx.xpi / chrome / greasemonkey.jar / chromeFiles / content / manage.css < prev    next >
Cascading Style Sheet File  |  2008-06-09  |  1KB  |  61 lines

  1. /*
  2. These dummy values are "flexed".  Having a set value, though, keeps the
  3. columns from shifting size, as their content does.  They also influence
  4. the original starting size of the elements before flexing.
  5. */
  6. window {
  7.   width: 600px;
  8.   height: 500px;
  9.   padding: 10px;
  10. }
  11. #col_left {
  12.   width: 200px
  13. }
  14. #col_right {
  15.   width: 400px
  16. }
  17.  
  18. #lstScripts {
  19.   min-width:140px;
  20.   margin-top:0
  21. }
  22.  
  23. #ctlHeader {
  24.   margin: 0px 5px 5px 5px;
  25.   border: 2px solid;
  26.   -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow;
  27.   -moz-border-right-colors: ThreeDHighlight ThreeDDarkShadow;
  28.   -moz-border-bottom-colors: ThreeDHighlight ThreeDDarkShadow;
  29.   -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow;
  30.   padding: 5px 8px;
  31.   background-color: Highlight;
  32.   color: HighlightText;
  33.   font-size: 1.5em;
  34.   height: 2em
  35. }
  36.  
  37. #ctlDescription {
  38.   margin:.5em;
  39.   height:3em;
  40.   max-height:3em
  41. }
  42.  
  43. #pages-control listbox {
  44.   overflow: auto
  45. }
  46.  
  47. #pages-control > groupbox > hbox {
  48.   margin-bottom: 0.5em
  49. }
  50.  
  51. /* border for indicator where drag-and-drop will go */
  52. listbox#lstScripts listitem {
  53.   border-top: 1px solid -moz-field;
  54.   border-bottom: 1px solid -moz-field
  55. }
  56. listbox#lstScripts listitem[dragover="top"] {
  57.   border-top-color: black
  58. }
  59. listbox#lstScripts listitem[dragover="bottom"] {
  60.   border-bottom-color: black
  61. }